home *** CD-ROM | disk | FTP | other *** search
- var html = Document.HtmlDocument;
- var window = html.parentWindow;
- var a;
- var i;
- var anchors = html.links;
- for( i=0; i<anchors.length; i++ )
- {
- a = anchors[i];
-
- if( a.protocol == 'javascript:' )
- continue;
-
- var uri = a.href;
- var pos = uri.lastIndexOf( '.' );
- var ext = uri.substr( pos, uri.length - pos );
- if( ext == '.jpg' || ext == '.jpeg' || ext == '.gif' )
- {
- Console.WriteLine( a.href );
- window.open( a.href );
- }
- }
-